61b73f43804c2a4751cd2116de070bd7f09ca133,src-modules/org/opencms/ade/galleries/client/ui/CmsResultListItem.java,CmsResultListItem,initMoveHandle,#CmsDNDHandler#,180
Before Change
if (super.initMoveHandle(dndHandler)) {
// move handle should always be visible
getMoveHandle().addStyleName(
org.opencms.gwt.client.ui.css.I_CmsLayoutBundle.INSTANCE.listItemWidgetCss().permaVisible());
return true;
}
After Change
if (super.initMoveHandle(dndHandler)) {
// move handle should always be visible
getMoveHandle().getElement().addClassName(
org.opencms.gwt.client.ui.css.I_CmsLayoutBundle.INSTANCE.listItemWidgetCss().permaVisible());
return true;
}